home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Environments / Small Eiffel 0.4.8 / lib_show / hello_world.e < prev    next >
Encoding:
Text File  |  1997-04-13  |  481 b   |  23 lines  |  [TEXT/ttxt]

  1. -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C) 
  2. -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
  3. --
  4. class HELLO_WORLD
  5. --
  6. -- The "Hi World program" for SmallEiffel :-)   
  7. --   
  8. -- To compile type command : compile hello_world 
  9. -- Run with command : a.out   
  10. --
  11. -- To compile an optimized version type : compile hello_world -boost -O2
  12. --
  13. creation make
  14.    
  15. feature
  16.    
  17.    make is
  18.       do
  19.      io.put_string("Hello World.%N");
  20.       end;
  21.    
  22. end -- HELLO_WORLD
  23.